home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Arsenal / OS2 Arsenal v1.0 (Disc 2)(Arsenal Computer).ISO / os2_inet / progcsd.exe / AUTH.H < prev    next >
Text File  |  1992-11-12  |  7KB  |  184 lines

  1. /********************************************************copyrite.xmc***/
  2. /*                                                                     */
  3. /*   Licensed Materials - Property of IBM                              */
  4. /*                                                                     */
  5. /*   This module is "Restricted Materials of IBM":                     */
  6. /*      Program Number:   5798RXW                                      */
  7. /*      Program Name:     IBM TCP/IP Version 1.2 for OS/2              */
  8. /*   (C) Copyright IBM Corporation. 1990, 1991.                        */
  9. /*                                                                     */
  10. /*   See IBM Copyright Instructions.                                   */
  11. /*                                                                     */
  12. /********************************************************copyrite.xmc***/
  13. /*
  14.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  15.  * unrestricted use provided that this legend is included on all tape
  16.  * media and as a part of the software program in whole or part.  Users
  17.  * may copy or modify Sun RPC without charge, but are not authorized
  18.  * to license or distribute it to anyone else except as part of a product or
  19.  * program developed by the user.
  20.  *
  21.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  22.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  23.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  24.  *
  25.  * Sun RPC is provided with no support and without any obligation on the
  26.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  27.  * modification or enhancement.
  28.  *
  29.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  30.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  31.  * OR ANY PART THEREOF.
  32.  *
  33.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  34.  * or profits or other special, indirect and consequential damages, even if
  35.  * Sun has been advised of the possibility of such damages.
  36.  *
  37.  * Sun Microsystems, Inc.
  38.  * 2550 Garcia Avenue
  39.  * Mountain View, California  94043
  40.  */
  41. /*      @(#)auth.h 1.1 86/02/03 SMI      */
  42. #ifndef INCL_RPC_AUTH
  43. #define INCL_RPC_AUTH
  44. #ifndef __32BIT__
  45. #define _Packed
  46. #define _Seg16
  47. #define _Far16
  48. #define _Cdecl
  49. #endif
  50.  
  51. /*
  52.  * auth.h, Authentication interface.
  53.  *
  54.  * Copyright (C) 1984, Sun Microsystems, Inc.
  55.  *
  56.  * The data structures are completely opaque to the client.  The client
  57.  * is required to pass a AUTH * to routines that create rpc
  58.  * "sessions".
  59.  */
  60.  
  61.  
  62. #define MAX_AUTH_BYTES  400
  63.  
  64.  
  65. /*
  66.  * Status returned from authentication check
  67.  */
  68. enum auth_stat {
  69.         AUTH_OK=0,
  70.         /*
  71.          * failed at remote end
  72.          */
  73.         AUTH_BADCRED=1,                 /* bogus credentials (seal broken) */
  74.         AUTH_REJECTEDCRED=2,            /* client should begin new session */
  75.         AUTH_BADVERF=3,                 /* bogus verifier (seal broken) */
  76.         AUTH_REJECTEDVERF=4,            /* verifier expired or was replayed */
  77.         AUTH_TOOWEAK=5,                 /* rejected due to security reasons */
  78.         /*
  79.          * failed locally
  80.         */
  81.         AUTH_INVALIDRESP=6,             /* bogus response verifier */
  82.         AUTH_FAILED=7                   /* some unknown reason */
  83. #ifdef __32BIT__
  84.         , AUTH_DUMMY=32767
  85. #endif
  86. };
  87.  
  88.  
  89. union des_block {
  90.         struct {
  91.                 u_long high;
  92.                 u_long low;
  93.         } key;
  94.         char c[8];
  95. };
  96.  
  97.  
  98. /*
  99.  * Authentication info.  Opaque to client.
  100.  */
  101. _Packed struct opaque_auth {
  102.         enum_t  oa_flavor;              /* flavor of auth */
  103.         char * _Seg16 oa_base;                /* address of more auth stuff */
  104.         u_short oa_length;              /* not to exceed MAX_AUTH_BYTES */
  105. };
  106.  
  107.  
  108. /*
  109.  * Auth handle, interface to client side authenticators.
  110.  */
  111. typedef _Packed struct {
  112.         struct  opaque_auth     ah_cred;
  113.         struct  opaque_auth     ah_verf;
  114.         union   des_block       ah_key;
  115.         struct auth_ops {
  116.                 void    (* _Seg16 _Far16 _Cdecl ah_nextverf)(void * _Seg16);
  117.                 short   (* _Seg16 _Far16 _Cdecl ah_marshal)(void * _Seg16,void * _Seg16);        /* nextverf & serialize */
  118.                 short   (* _Seg16 _Far16 _Cdecl ah_validate)(void * _Seg16,void * _Seg16);       /* validate varifier */
  119.                 short   (* _Seg16 _Far16 _Cdecl ah_refresh)(void * _Seg16);        /* refresh credentials */
  120.                 void    (* _Seg16 _Far16 _Cdecl ah_destroy)(void * _Seg16);        /* destroy this structure */
  121.         } * _Seg16 ah_ops;
  122.         char * _Seg16 ah_private;
  123. } AUTH;
  124.  
  125.  
  126. /*
  127.  * Authentication ops.
  128.  * The ops and the auth handle provide the interface to the authenticators.
  129.  *
  130.  * AUTH *auth;
  131.  * XDR  *xdrs;
  132.  * struct opaque_auth verf;
  133.  */
  134. #define AUTH_NEXTVERF(auth)             \
  135.                 ((*((auth)->ah_ops->ah_nextverf))(auth))
  136. #define auth_nextverf(auth)             \
  137.                 ((*((auth)->ah_ops->ah_nextverf))(auth))
  138.  
  139. #define AUTH_MARSHALL(auth, xdrs)       \
  140.                 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
  141. #define auth_marshall(auth, xdrs)       \
  142.                 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
  143.  
  144. #define AUTH_VALIDATE(auth, verfp)      \
  145.                 ((*((auth)->ah_ops->ah_validate))((auth), verfp))
  146. #define auth_validate(auth, verfp)      \
  147.                 ((*((auth)->ah_ops->ah_validate))((auth), verfp))
  148.  
  149. #define AUTH_REFRESH(auth)              \
  150.                 ((*((auth)->ah_ops->ah_refresh))(auth))
  151. #define auth_refresh(auth)              \
  152.                 ((*((auth)->ah_ops->ah_refresh))(auth))
  153.  
  154. #define AUTH_DESTROY(auth)              \
  155.                 ((*((auth)->ah_ops->ah_destroy))(auth))
  156. #define auth_destroy(auth)              \
  157.                 ((*((auth)->ah_ops->ah_destroy))(auth))
  158.  
  159.  
  160. extern _Packed struct opaque_auth _null_auth;
  161.  
  162.  
  163. /*
  164.  * These are the various implementations of client side authenticators.
  165.  */
  166.  
  167. /*
  168.  * Unix style authentication
  169.  * AUTH *authunix_create(machname, uid, gid, len, aup_gids)
  170.  *      char *machname;
  171.  *      int uid;
  172.  *      int gid;
  173.  *      int len;
  174.  *      int *aup_gids;
  175.  */
  176. extern AUTH * _Seg16 _Far16 _Cdecl authunix_create(char * _Seg16, short,short,short,short * _Seg16);
  177. extern AUTH * _Seg16 _Far16 _Cdecl authunix_create_default(void); /* takes no parameters */
  178. extern AUTH * _Seg16 _Far16 _Cdecl authnone_create(void);         /* takes no parameters */
  179.  
  180. #define AUTH_NULL       0
  181. #define AUTH_UNIX       1               /* unix style (uid, gids) */
  182. #define AUTH_SHORT      2               /* short hand unix style */
  183. #endif
  184.